
     nav {
      background-color: #222;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px;
      box-shadow: 0 2px 5px gray;
    }

    nav img {
      width: 120px;
      height: auto;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #00bfff;}


      .about-section {
  padding: 50px 20px;
  background-color: white; 
}

.about-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.about-item h1, .about-item h2 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.about-item p {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1200px) {
  .about-row {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (max-width: 768px) {
  .about-row {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 500px) {
  .about-row {
    grid-template-columns: 1fr;
  }
}



    .team {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px black;
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
}

.team-member p {
  color: #555;
  font-size: 0.9em;
} 
  
.about-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: white; 
}

.about-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background-color: white;
  padding: 40px 30px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 10px 25px black;
  border-radius: 15px;
  text-align: center;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.about-box h1, .about-box h2 {
  margin-bottom: 15px;
}

    footer {
      background:gray;
      color: white;
      padding: 20px;
      text-align: center;
      margin-top: 40px;
      
    }

    footer a {
      color: yellow;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
    }

    footer a:hover {
      color: lightblue;
    }

    

    